home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
powervww
/
compile.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-01-05
|
1KB
|
28 lines
// ____________________________________________________
// | |
// | Project: POWER VIEW IDE |
// | File: COMPILE.H |
// | Compiler: WPP386 (10.6) |
// | |
// | Subject: Compile & Link interface |
// | |
// | Author: Emil Dotchevski |
// |____________________________________________________|
//
// E-mail: zajo@geocities.com
// URL: http://www.geocities.com/SiliconValley/Bay/3577
void start_of_make( char *_make_title );
void make_status( char *current_file, char *target_file, char *status );
void end_of_make( int show_log );
char *get_local_options( char *buffer, char *file );
boolean target_valid( char *target, char *source );
boolean need_make( char *filename );
int exec( uint flags, char *program, char *params, char *redirect, void *history_id=NULL );
void watcom_command_line( char *result, char *file );
void watcom_link_command_line( char *result );
int exec_watcom( char *file );
int exec_linker( char *file );
boolean compile( void );
boolean link( void );